home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / command < prev    next >
Text File  |  1991-05-03  |  1KB  |  25 lines

  1.                                   COMMAND
  2.                    Invokes a secondary command processor
  3.                        See also <SHELL> <CONFIG.SYS>
  4.  
  5. COMMAND TYPE: External                  VERSION: 2.0 and up
  6.  
  7. USE:  COMMAND [d:][path][ctty-dev][/P] [/C string][/E:nnnnn]
  8.  
  9. d: path is the drive and path that DOS will look in for the COMMAND
  10.    processor.
  11. ctty-dev allows you to specify a different device (such as AUX) for
  12.    input and output.
  13. /P makes the secondary command processor permanent in memory. The
  14.    <AUTOEXEC.BAT> file is executed following this command.
  15. /C string passes a string (a DOS command) to the command processor and
  16.    then exits automatically.
  17. /E:nnnnn is an integer that specifies the size (in bytes) of the
  18.    environment. The acceptable range of nnnnn is from 160 to 32768.
  19.    (not available pre DOS 2.x).  In DOS 3.1, the size is in paragraphs
  20.    (units of 16 bytes).  Default size is 160 bytes.
  21.  
  22. EXAMPLE: COMMAND /C CHKDSK B:
  23. loads a secondary command processor, runs the command <CHKDSK> on drive B
  24. and returns to the original command processor.
  25.